home *** CD-ROM | disk | FTP | other *** search
- /*
-
- Interface file for an ADT class using icemalloc() as its memory allocator
- Copyright 1992 Eric W. Sink, All Rights Reserved.
-
- */
-
- #define _H_DObject
-
- #include <oops.h> /* THINK C interface for objects */
- #include <Exceptions.h> /* TCL Exception handling */
- #include "icemalloc.h"
-
- class DObject : direct {
- /* currently no instance variables */
- public:
- void Dispose(void);
- void* operator new( long );
- void operator delete( void* );
- };
-
-
-